binary heap
Note that it is not [binary heap
Compared to the dichotomous heap, data structure is characterized by faster merging. Insertion averages O(1) in the bipartite heap, but there is no specific merge support, so the total is O(N).
On the other hand, in the case of a binomial heap, it is O(logN)
Merge, Insert, Find Minimum, Subtract Key Value, Delete O(logN)
Minimum value search can be O(1) with an additional twist
---
This page is auto-translated from /nishio/二項ヒープ using DeepL. If you looks something interesting but the auto-translated English is not good enough to understand it, feel free to let me know at @nishio_en. I'm very happy to spread my thought to non-Japanese readers.